home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
program
/
gemxx19.zoo
/
gem++19
/
include
/
bool.h
next >
Wrap
C/C++ Source or Header
|
1993-11-01
|
97b
|
10 lines
#ifndef bool_h
#define bool_h
typedef int bool;
const bool TRUE=1;
const bool FALSE=0;
#endif